GET api/travel/day/traveldateparentnote?personIds[0]={personIds[0]}&personIds[1]={personIds[1]}
Retrieves travel date parent notes for specified persons. Parent notes contain additional information provided by parents regarding travel arrangements.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| personIds |
Collection of person identifiers to retrieve parent notes for. Query string parameter. Required. |
Collection of integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Returns HTTP 200 (OK) with an array of TravelDateParentNote objects for the specified persons.
Collection of TravelDateParentNote| Name | Description | Type | Additional information |
|---|---|---|---|
| TravelDateID | integer |
None. |
|
| PersonID | integer |
None. |
|
| Direction | Direction |
None. |
|
| Notes | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"TravelDateID": 1,
"PersonID": 2,
"Direction": 0,
"Notes": "sample string 3"
},
{
"TravelDateID": 1,
"PersonID": 2,
"Direction": 0,
"Notes": "sample string 3"
}
]
application/javascript
Sample:
[{"TravelDateID":1,"PersonID":2,"Direction":0,"Notes":"sample string 3"},{"TravelDateID":1,"PersonID":2,"Direction":0,"Notes":"sample string 3"}]
application/xml, text/xml
Sample:
<ArrayOfTravelDateParentNote xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<TravelDateParentNote>
<TravelDateID>1</TravelDateID>
<PersonID>2</PersonID>
<Direction>Undefined</Direction>
<Notes>sample string 3</Notes>
</TravelDateParentNote>
<TravelDateParentNote>
<TravelDateID>1</TravelDateID>
<PersonID>2</PersonID>
<Direction>Undefined</Direction>
<Notes>sample string 3</Notes>
</TravelDateParentNote>
</ArrayOfTravelDateParentNote>